From 5bf9210047cb954d08861f4016aed5a46a82b94d Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 14 Nov 2001 03:03:54 +0000 Subject: [PATCH] param spec fix --- tests/prop-editor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/prop-editor.c b/tests/prop-editor.c index bbfa2163dc..6967b9328e 100644 --- a/tests/prop-editor.c +++ b/tests/prop-editor.c @@ -695,7 +695,7 @@ properties_from_type (GObject *object, continue; } - label = gtk_label_new (g_param_get_nick (spec)); + label = gtk_label_new (g_param_spec_get_nick (spec)); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, i, i + 1); @@ -707,8 +707,8 @@ properties_from_type (GObject *object, if (!can_modify) gtk_widget_set_sensitive (prop_edit, FALSE); - if (g_param_get_blurb (spec)) - gtk_tooltips_set_tip (tips, prop_edit, g_param_get_blurb (spec), NULL); + if (g_param_spec_get_blurb (spec)) + gtk_tooltips_set_tip (tips, prop_edit, g_param_spec_get_blurb (spec), NULL); /* set initial value */ g_object_notify (object, spec->name); -- 2.30.2